home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 14550 / 14550.xpi / chrome / chrome.jar / content / reloadall.xul < prev    next >
Extensible Markup Language  |  2009-11-02  |  3KB  |  54 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.  -  Reload All! Mozilla Firefox Addon - This is the core addon XUL file
  4.  -  
  5.  -  Copyright (C) 2009  Dhruwat Bhagat <unitedronaldo@yahoo.com>
  6.  -
  7.  -
  8.  -  This program is free software; you can redistribute it and/or modify
  9.  -  it under the terms of the GNU General Public License as published by
  10.  -  the Free Software Foundation; either version 2 of the License, or
  11.  -  (at your option) any later version.
  12.  -
  13.  -  This program is distributed in the hope that it will be useful,
  14.  -  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  -  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  -  GNU General Public License for more details.
  17.  -
  18.  -  You should have received a copy of the GNU General Public License
  19.  -  along with this program; if not, write to the Free Software
  20.  -  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  - ***** END LICENSE BLOCK ***** -->
  22. <?xml-stylesheet href="chrome://reloadall/skin/overlay.css" type="text/css"?>
  23. <!DOCTYPE overlay SYSTEM "chrome://reloadall/locale/overlay.dtd">
  24. <overlay id="sample" 
  25.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  26.     <script type="application/x-javascript" src="chrome://reloadall/content/reloadall.js"/>
  27.     <!-- Button -->
  28.     <toolbarpalette id="BrowserToolbarPalette">
  29.       <toolbarbutton id="reloadall-button" label="&reloadall;" type="menu-button" class="toolbarbutton-1 chromeclass-toolbar-additional" tooltiptext="&reloadall;" 
  30.         insertbefore="home-button" oncommand="reloadall.reloadAll(event);">
  31.         <menupopup id="reloadall-menupopup-toolbar">
  32.       <menuitem id="reloadall-menuitem-toolbar" label="&selecttabs;" tooltiptext="&selecttabs;" oncommand="reloadall.openSelectionPopup();"/>
  33.     </menupopup>  
  34.       </toolbarbutton>
  35.       <!-- class="toolbarbutton-1 chromeclass-toolbar-additional" -->
  36.     </toolbarpalette>
  37.  
  38.     <!-- Menu -->
  39.     <menubar id="main-menubar">    
  40.       <menu id="tools-menu">
  41.     <menupopup id="menu_ToolsPopup">
  42.       <menu id="reloadall-toolsmenu" label="Reload All" insertbefore="devToolsSeparator">
  43.         <menupopup id="reloadall-menupopup">
  44.           <menuitem id="reloadall-menuitem-reloadall" label="&reloadall;" oncommand="reloadall.reloadAll(event);"/>
  45.           <menuitem id="reloadall-menuitem-selecttabs" label="&selecttabs;" oncommand="reloadall.openSelectionPopup();"/>
  46.         </menupopup>
  47.       </menu>
  48.     </menupopup>
  49.       </menu>
  50.     </menubar>
  51.  
  52.   
  53.  
  54. </overlay>